home *** CD-ROM | disk | FTP | other *** search
- var Count = true;
- onEnterFrame = function()
- {
- if(this.hitTest(myCarName))
- {
- if(Count == true)
- {
- if(this.hitTest(myCarName.hit1_mc) && this.hitTest(myCarName.hit2_mc) && this.hitTest(myCarName.hit3_mc) && this.hitTest(myCarName.hit4_mc) && this.hitTest(myCarName.hit5_mc) && this.hitTest(myCarName.hit6_mc) && this.hitTest(myCarName.hit7_mc) && this.hitTest(myCarName.hit8_mc) && myCarName.speed == 0)
- {
- Count = false;
- myCarName.isMovable = false;
- myCarName._name = myCarName.prevName;
- _root.userCar = "";
- myCarName.isPlayer = false;
- _parent.valet_mc.hit = false;
- _parent.valet_mc._visible = true;
- _parent.valet_mc._x = _parent.spawn_mc._x;
- _parent.valet_mc._y = _parent.spawn_mc._y;
- _root.score += 500;
- if(!_parent.park3_mc.Count && !_parent.park2_mc.Count && !_parent.park1_mc.Count)
- {
- _root.gotoAndStop("levelComplete");
- }
- }
- }
- }
- };
-